home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / pam.d / login < prev    next >
Text File  |  2009-07-31  |  4KB  |  99 lines

  1. #
  2. # The PAM configuration file for the Shadow `login' service
  3. #
  4.  
  5. # Enforce a minimal delay in case of failure (in microseconds).
  6. # (Replaces the `FAIL_DELAY' setting from login.defs)
  7. # Note that other modules may require another minimal delay. (for example,
  8. # to disable any delay, you should add the nodelay option to pam_unix)
  9. auth       optional   pam_faildelay.so  delay=3000000
  10.  
  11. # Outputs an issue file prior to each login prompt (Replaces the
  12. # ISSUE_FILE option from login.defs). Uncomment for use
  13. # auth       required   pam_issue.so issue=/etc/issue
  14.  
  15. # Disallows root logins except on tty's listed in /etc/securetty
  16. # (Replaces the `CONSOLE' setting from login.defs)
  17. # Note that it is included as a "requisite" module. No password prompts will
  18. # be displayed if this module fails to avoid having the root password
  19. # transmitted on unsecure ttys.
  20. # You can change it to a "required" module if you think it permits to
  21. # guess valid user names of your system (invalid user names are considered
  22. # as possibly being root).
  23. auth       requisite  pam_securetty.so
  24.  
  25. # Disallows other than root logins when /etc/nologin exists
  26. # (Replaces the `NOLOGINS_FILE' option from login.defs)
  27. auth       requisite  pam_nologin.so
  28.  
  29. # SELinux needs to be the first session rule. This ensures that any 
  30. # lingering context has been cleared. Without out this it is possible 
  31. # that a module could execute code in the wrong domain.
  32. # When the module is present, "required" would be sufficient (When SELinux
  33. # is disabled, this returns success.)
  34. session [success=ok ignore=ignore module_unknown=ignore default=bad] pam_selinux.so close
  35.  
  36. # This module parses environment configuration file(s)
  37. # and also allows you to use an extended config
  38. # file /etc/security/pam_env.conf.
  39. # parsing /etc/environment needs "readenv=1"
  40. session       required   pam_env.so readenv=1
  41. # locale variables are also kept into /etc/default/locale in etch
  42. # reading this file *in addition to /etc/environment* does not hurt
  43. session       required   pam_env.so readenv=1 envfile=/etc/default/locale
  44.  
  45. # Standard Un*x authentication.
  46. @include common-auth
  47.  
  48. # This allows certain extra groups to be granted to a user
  49. # based on things like time of day, tty, service, and user.
  50. # Please edit /etc/security/group.conf to fit your needs
  51. # (Replaces the `CONSOLE_GROUPS' option in login.defs)
  52. auth       optional   pam_group.so
  53.  
  54. # Uncomment and edit /etc/security/time.conf if you need to set
  55. # time restrainst on logins.
  56. # (Replaces the `PORTTIME_CHECKS_ENAB' option from login.defs
  57. # as well as /etc/porttime)
  58. # account    requisite  pam_time.so
  59.  
  60. # Uncomment and edit /etc/security/access.conf if you need to
  61. # set access limits.
  62. # (Replaces /etc/login.access file)
  63. # account  required       pam_access.so
  64.  
  65. # Sets up user limits according to /etc/security/limits.conf
  66. # (Replaces the use of /etc/limits in old login)
  67. session    required   pam_limits.so
  68.  
  69. # Prints the last login info upon succesful login
  70. # (Replaces the `LASTLOG_ENAB' option from login.defs)
  71. session    optional   pam_lastlog.so
  72.  
  73. # Prints the motd upon succesful login
  74. # (Replaces the `MOTD_FILE' option in login.defs)
  75. session    optional   pam_motd.so
  76.  
  77. # Prints the status of the user's mailbox upon succesful login
  78. # (Replaces the `MAIL_CHECK_ENAB' option from login.defs). 
  79. #
  80. # This also defines the MAIL environment variable
  81. # However, userdel also needs MAIL_DIR and MAIL_FILE variables
  82. # in /etc/login.defs to make sure that removing a user 
  83. # also removes the user's mail spool file.
  84. # See comments in /etc/login.defs
  85. session    optional   pam_mail.so standard
  86.  
  87. # Standard Un*x account and session
  88. @include common-account
  89. @include common-session
  90. @include common-password
  91.  
  92. # SELinux needs to intervene at login time to ensure that the process
  93. # starts in the proper default security context. Only sessions which are
  94. # intended to run in the user's context should be run after this.
  95. session [success=ok ignore=ignore module_unknown=ignore default=bad] pam_selinux.so open
  96. # When the module is present, "required" would be sufficient (When SELinux
  97. # is disabled, this returns success.)
  98.